home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-01 / msoftapp.zip / SPLITTER.H < prev    next >
C/C++ Source or Header  |  1993-06-01  |  888b  |  38 lines

  1. // splitter.h : header file
  2. //
  3.  
  4. /////////////////////////////////////////////////////////////////////////////
  5. // CSplitterFrameWnd frame with splitter
  6.  
  7. #ifndef __AFXEXT_H__
  8. #include <afxext.h>
  9. #endif
  10.  
  11. class CSplitterFrameWnd : public CMDIChildWnd
  12. {
  13.     DECLARE_DYNCREATE(CSplitterFrameWnd)
  14. protected:
  15.     CSplitterFrameWnd();            // protected constructor used by dynamic creation
  16.  
  17. // Attributes
  18. protected:
  19.     CSplitterWnd    m_wndSplitter;
  20. public:
  21.  
  22. // Operations
  23. public:
  24.  
  25. // Implementation
  26. public:
  27.     virtual ~CSplitterFrameWnd();
  28.     virtual BOOL OnCreateClient(LPCREATESTRUCT lpcs, CCreateContext* pContext);
  29.  
  30.     // Generated message map functions
  31.     //{{AFX_MSG(CSplitterFrameWnd)
  32.         // NOTE - the ClassWizard will add and remove member functions here.
  33.     //}}AFX_MSG
  34.     DECLARE_MESSAGE_MAP()
  35. };
  36.  
  37. /////////////////////////////////////////////////////////////////////////////
  38.